home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00229_Script_rewind button to scene2 < prev    next >
Text File  |  1999-03-01  |  415b  |  27 lines

  1.  
  2. on mouseWithin me
  3.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  4. end
  5.  
  6. on mouseLeave me
  7.   cursor -1
  8. end
  9.  
  10. on mouseDown me
  11.   repeat with x = 1 to 6
  12.     if soundBusy(x) then 
  13.       set the volume of sound x to 255
  14.       sound stop x
  15.     end if
  16.   end repeat
  17.   cursor 200
  18.   
  19. end
  20.  
  21. on mouseUp me
  22.   cursor -1
  23.   go to frame "scene2" of movie "scene1_2"
  24.   
  25. end 
  26.  
  27.